home *** CD-ROM | disk | FTP | other *** search
/ Windows Game Programming for Dummies (2nd Edition) / WinGamProgFD.iso / pc / DirectX SDK / DXSDK / samples / Multimedia / DirectShow / BaseClasses / activex.ver < prev    next >
Encoding:
Text File  |  2001-10-08  |  1.9 KB  |  57 lines

  1. //------------------------------------------------------------------------------
  2. // File: Activex.ver
  3. //
  4. // Desc: DirectShow base classes - common versioning information for 
  5. //       ACTIVEX binaries.
  6. //
  7. // Copyright (c) 1996 - 2001, Microsoft Corporation.  All rights reserved.
  8. //------------------------------------------------------------------------------
  9.  
  10.  
  11. #ifndef _ACTIVEX_VER_
  12. #define _ACTIVEX_VER_
  13.  
  14. // NOTE: all string resources that will be used in ACTIVEX.RCV for the
  15. // version resource information *MUST* have an explicit \0 terminator!
  16.  
  17. #define VERSION_RES_MAJOR_VER   8
  18. #define VERSION_RES_MINOR_VER   1
  19. #define VERSION_RES_BUILD       0
  20.  
  21. #define VERSION_RES_STRING_D    "8.10 (Debug)\0"
  22. #define VERSION_RES_STRING      "8.10\0"
  23.  
  24. #define VERSION_RES_PRODUCT_NAME  "DirectX 8.1 Sample\0"
  25. #define VERSION_RES_COMMENT       "DirectShow Sample\0"
  26. #define VERSION_RES_COMPANY_NAME  "Microsoft Corporation\0"
  27. #define VERSION_RES_COPYRIGHT     "Copyright (C) 1992-2001 Microsoft Corporation\0"
  28.  
  29. // The following defines are required on a file-by-file basis
  30. //
  31. // #define VERSION_RES_BIN_NAME         "sample.ax\0"
  32. // #define VERSION_RES_BIN_DESCRIPTION  "Sample Filter\0"
  33. //
  34. // Also required, if you don't want the defaults, are
  35. //
  36. // #define VERSION_RES_ACTIVEX  "Filter dll\0" (the default value)
  37. //
  38. // A string defining the type of component.
  39. //
  40. // #define VERSION_RES_TYPE     VFT_DLL (default)
  41. //                              VFT_APP
  42. //                              VFT_VXD
  43. //                              VFT_DRV
  44. //                              VFT_FONT
  45. //                              VFT_STATIC_LIB
  46. //                              VFT_UNKNOWN
  47. //
  48. // #define VERSION_RES_SUBTYPE  VFT2_UNKNOWN (default)
  49. //                              VFT2_DRV_INSTALLABLE
  50. //                              VFT2_DRV_SOUND
  51. //                              <several other options>
  52. //
  53. // See winver.h for further details
  54.  
  55. #endif
  56.  
  57.